I am trying to do the iChat video chat

I have been trying to do the video chat ever since i got the computer, and it seems that every time i try it, it will either not let me get on or once i get on and get a chat invitation it will sign me off. The very few times i have gotten it to work, it will work for a second and then sign me off and not let me get back on.

Sounds like a problem i had when i had an airport, reconfiguring din't work so i went and got a netgear. Never had problems again.

Similar Messages

  • Using the iChat video conferencing with a PC user

    I have been trying to use the iChat AV with a PC user who is on AIM. Is this not possible? Even a one-way chat?

    Unfortunately this is the only way I use iChat... I can't convince my relatives to make the apple jump. It will not work one-way, only if both sides have video. When it does work it works ok, but the windows side generally has all kinds of configuration issues (like personal firewall problems). It also isn't that great of an experience on the windows side, but that is just my opinion after using hte mac side.
    There are some really good folks in the ichat forum with a LOT of great information on how to get this working correctly. But for the most part the problem is going to be on the other (pc) end. The one other person I do video chat with is a mac user in New Zealand and I am in the US - when we connect I never have a problem...
    Good luck!

  • Tried to follow the second video tutorial with no success

    Hi,
    I tried to run the second video tutorial (Your Second AFCS Application) on LCCS SDK Navigator with no success.
    VideoChat.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
                   minHeight="600" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <!--<rtc:ConnectSessionContainer id="cSession" autoLogin="true" width="100%"
        height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
        -->
        <!--
        <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4">
        -->
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
    </s:Application>
    LoginDialog2.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import com.adobe.rtc.session.IConnectSession;
                import mx.managers.PopUpManager;
                [Bindable]
                public var connectSession:IConnectSession;
                protected function login():void {
                    connectSession.authenticator.userName = userNameField.text;
                    connectSession.login();
                    PopUpManager.removePopUp(this);
            ]]>
        </fx:Script>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 646,462 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  Any idea of what's wrong?
    Thanks,
    Kevin

    I got the following error:
    Description    Resource    Path    Location    Type
    Parse error: '<fx:Script>' is not allowed to follow '<fx:Declarations>'.    LoginDialog2.mxml    /VideoChat/src    line 9    Flex Problem
    If I did:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <fx:Script>
                <![CDATA[
                    import com.adobe.rtc.session.IConnectSession;
                    import mx.managers.PopUpManager;
                    [Bindable]
                    public var connectSession:IConnectSession;
                    protected function login():void {
                        connectSession.authenticator.userName = userNameField.text;
                        connectSession.login();
                        PopUpManager.removePopUp(this);
                ]]>
            </fx:Script>
        </fx:Declarations>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    in LoginDialog2.mxml, putting <fx: Script> inside <fx:Declarations>
    I then tried to change some of the code segments around in VideoChat.mxml but still no success:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
                   minHeight="600" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
    </s:Application>

  • Tried to follow the first video tutorial with no success

    Hi,
    I tried to run the first video tutorial (Your First AFCS Application) on LCCS SDK Navigator with no success.
    The code as described is:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:rtc="AfcsNameSpace">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
                <rtc:authenticator>
                    <rtc:AdobeHSAuthenticator userName="*******" password="*******"/>
                </rtc:authenticator>
                <mx:HBox width="100%" height="100%">
                    <mx:VBox width="25%" height="100%">
                        <rtc:Roster width="100%" height="50%"/>
                        <rtc:WebCamera width="100%" height="50%"/>   
                    </mx:VBox>
                    <rtc:SimpleChat width="75%" height="100%"/>                   
                </mx:HBox>
            </rtc:ConnectSessionContainer>
        </fx:Declarations>
    </mx:Application>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 706,253 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  And yes, the username and password are correct; I just removed them for privacy.  Any ideas?
    Thanks,
    Kevin

    Hi Kevin (and welcome to the forums!),
    Wow, that's a trip... ConnectSessionContainer is a visual component, so I
    guess it needs to be outside your <fx:Declarations> tags. I didn't know that
    putting it in there would cause all hell to break loose (I love how the
    number of bytes keeps changing!); you learn something new every day!
    nigel

  • If a buddy's screename is faded (in the offline section), but a video icon is still next to the screename, and if you right click on the name "video chat" is an option, what does this mean? it is the only one on my whole list that has this.

    if a buddy's screename is faded (in the offline section), but a video icon is still next to the screename, and if you right click on the name "video chat" is an option, what does this mean? it is the only one on my whole list that has this.

    Hi,
    It could be some sort of "flagging" issue where either the AIM Servers have gone out of sync and you are getting two lots of info  (There are about three or four servers involved with getting data to your Buddy list)
    I can also see the possibility where you have a Contact in your Address Book who has two Screen Names.
    You have one in one group and in another they appear to be Off Line.  However iChat will still Link them and Show their Capabilities when you Right Click.
    One way of checking this is to double click them to open a Text Chat Window.
    At the top is the Recipients Bar  (See View Menu when  Text Chat is Open).
    This gives you the option to chose a different Buddy Name if the contact has two  (It offers To and From options if you both have Multiple Accounts).
    Pic of an Old Chat to someone with Multiple "Names"
    They have an @Mac.com name and  Jabber ID  (As it is an Old Chat the Jabber one is Off Line and their @mac.com name is currently "Away"
    You can see I have a Google and three AIM Logins I could use to Speak to them.
    9:48 PM      Sunday; December 4, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • IChat video chat issues

    iChat has been acting up recently. I have an iSight, the person I want to talk with has a Veo USB webcam. They are on a Windows XP computer using AIM 5.9, I am on a Mac OSX 10.4.5 using iChat 3.1.1. All my ports are forwarded, I have no firewall on, nor does he. Sometimes it will work. Once we got it to work so that I could see and hear him, and he could see and hear me. Lately though, it's been me seeing him, not hearing him, but he can see and hear me. Then it let me see him for a second, then it freezes, but he can see and hear me. I never have audio from the start from him. Somewhere in between there it will load to the point where I can see myself in the window but not him. Usually he can only see and hear me and I can't hear him, but once I could hear him. This is getting confusing and aggrivating. We both have the newest version of everything, and I have gone to every troubleshooter everywhere. What's up here?
      Mac OS X (10.4.5)  

    Hi Michael,
    IF you can connect, but his audio is missing there is a setting on his end that can sometimes help.
    Start a Chat.
    You open the Connection Doctor from the iChat Video menu
    He clicks on the rear of the two tabs where he sees your Video. This should be his preview.
    When his preview is at the front there should be a small icon to the right.
    If he clicks on that a slider will come up.
    Sliding the slider to the left does in fact reduce the quality. (not that you can tell visually)
    In the Connection Doctor you should see his bit rate and Framerate increase.
    If there is enough adjustment of the Video quality the sound should kick in.
    Adjust as required to achieve acceptable Video and Sound.
    11:30 AM Thursday; February 23, 2006

  • The Facebook video chat icon is not appear after upgrading to mavericks X

    The Facebook video chat icon is not appear after upgrading to mavericks X. Please help.

    http://support.apple.com/kb/ht5404
    Scroll down to the bottom, read and then perform the troubleshooting steps provided.

  • I have figured out the ICHAT VIDEO PROBLEM!!!

    For all of you people like me who are having problems connecting your Ichat with another Ichat user, even when you have tried all those helpful tips like unblocking your fiewall and changing your quicktime settings and you ichat settings to what they have said and it still wont work... READ THIS.
    I was having the same problem and I notice that I have a wireless internet connection with linksys; and with my wireless interenet connection i have a name and a password to get into my internet connection, and that is the problem. When you want to chat with someone just unlock your password to get into your internet and your good to go.

    OS X 10.5.4, AT&T DSL, Airport Extreme.
    We've tried updating the Motorola MSTATEA modem firmware.
    Tried Port forwarding in Apple Airport.
    Firewall is open.
    iChat Video keeps stating Connection Refused. Even from others I can Video Chat with at a location on Comcast.
    Any suggestions???
    Here's the error report:
    Date/Time: 2008-09-17 16:25:57.537 -0400
    OS Version: 10.5.4 (Build 9E17)
    Report Version: 4
    iChat Connection Log:
    2008-09-17 16:25:40 -0400: AVChat started with ID 966609473.
    2008-09-17 16:25:40 -0400: tleed13: State change from AVChatNoState to AVChatStateWaiting.
    2008-09-17 16:25:40 -0400: 0x1c409950: State change from AVChatNoState to AVChatStateInvited.
    2008-09-17 16:25:46 -0400: 0x1c409950: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-09-17 16:25:46 -0400: tleed13: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-09-17 16:25:54 -0400: 0x1c409950: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-09-17 16:25:54 -0400: 0x1c409950: Error -7 (0x1c409950 cancelled the connection.)
    2008-09-17 16:25:54 -0400: tleed13: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-09-17 16:25:54 -0400: tleed13: Error -7 (0x1c409950 cancelled the connection.)
    Video Conference Error Report:
    48659.159136 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    49214.753064 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    9.298099 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    11.792351 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    10523.004682 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    10523.107533 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    11260.937131 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 2 returns 1
    11261.059749 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    48643.148581 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    48651.148942 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    48651.155108 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    48657.158095 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49433;branch=z9hG4bK4f2ab9af5d16273c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=699554886
    Call-ID: 8794ed92-84f5-11dd-abe4-d7ffc92e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49433>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49433 RTP/AVP 110 121 12 3 0
    a=rtcp:49433
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3998603218
    m=video 49433 RTP/AVP 123 126 34
    a=rtcp:49433
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49433 VIDEO 49433
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3027830110
    48657.659037 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49433;branch=z9hG4bK4f2ab9af5d16273c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=699554886
    Call-ID: 8794ed92-84f5-11dd-abe4-d7ffc92e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49433>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49433 RTP/AVP 110 121 12 3 0
    a=rtcp:49433
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3998603218
    m=video 49433 RTP/AVP 123 126 34
    a=rtcp:49433
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49433 VIDEO 49433
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3027830110
    48658.660580 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49433;branch=z9hG4bK4f2ab9af5d16273c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=699554886
    Call-ID: 8794ed92-84f5-11dd-abe4-d7ffc92e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49433>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49433 RTP/AVP 110 121 12 3 0
    a=rtcp:49433
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3998603218
    m=video 49433 RTP/AVP 123 126 34
    a=rtcp:49433
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49433 VIDEO 49433
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3027830110
    49201.011571 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    49206.734217 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    49206.735143 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    49212.752651 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49513;branch=z9hG4bK59837ccf4fa9f4c8
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1108778934
    Call-ID: d2bf7d86-84f6-11dd-abe4-ee824c3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49513>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49513 RTP/AVP 110 121 12 3 0
    a=rtcp:49513
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3534425975
    m=video 49513 RTP/AVP 123 126 34
    a=rtcp:49513
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49513 VIDEO 49513
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3781009652
    49213.253750 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49513;branch=z9hG4bK59837ccf4fa9f4c8
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1108778934
    Call-ID: d2bf7d86-84f6-11dd-abe4-ee824c3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49513>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49513 RTP/AVP 110 121 12 3 0
    a=rtcp:49513
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3534425975
    m=video 49513 RTP/AVP 123 126 34
    a=rtcp:49513
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49513 VIDEO 49513
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3781009652
    49214.254754 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:49513;branch=z9hG4bK59837ccf4fa9f4c8
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1108778934
    Call-ID: d2bf7d86-84f6-11dd-abe4-ee824c3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:49513>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 726
    v=0
    o=Jason 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 49513 RTP/AVP 110 121 12 3 0
    a=rtcp:49513
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3534425975
    m=video 49513 RTP/AVP 123 126 34
    a=rtcp:49513
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 49513 VIDEO 49513
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3781009652
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    10517.539913 @:0 type=5 (00000000/16402)
    [Local SIP port]
    48642.644340 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x23bfff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b0000 - 0x31efff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x36a000 - 0x4bdfff com.apple.viceroy.framework 363.2.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x52c000 - 0x56bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x58d000 - 0x5a6fff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c0000 - 0x5fafff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x60a000 - 0x61efff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x62f000 - 0x64dfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x655000 - 0x6c7fff com.apple.iLifeMediaBrowser 1.0.8 (212) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x705000 - 0x736fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x75f000 - 0x762fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x771000 - 0x771fff liblangid.dylib /usr/lib/liblangid.dylib
    0x783000 - 0x788fff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e2000 - 0x7e5fff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ec000 - 0x7f2fff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x902fff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x933000 - 0x934fff com.apple.JavaPluginCocoa 12.1.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x9fa000 - 0x9fffff com.apple.JavaVM 12.1.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xa08000 - 0xa09fff com.apple.iChat.PersonIconPlugIn 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x1499e000 - 0x14abcfff com.apple.RawCamera.bundle 2.0.8 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14af3000 - 0x14af8fff com.apple.CoreGraphics 1.351.32 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16513000 - 0x1651cfff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x1652d000 - 0x16530fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16536000 - 0x1653bfff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x165a1000 - 0x165dcfff com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x165e9000 - 0x16616fff com.apple.QuickTimeIIDCDigitizer 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x16621000 - 0x1666bfff com.apple.QuickTimeUSBVDCDigitizer 2.1.7 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16692000 - 0x16814fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16842000 - 0x16ba6fff com.apple.GeForce8xxxGLDriver 1.5.28 (5.2.8) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x16ee0000 - 0x16efcfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1815d000 - 0x1831afff com.apple.audio.codecs.Components 1.6.4 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1a203000 - 0x1a206fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1b4e2000 - 0x1b4fefff com.apple.QuartzComposer.ExtraPatches 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1b510000 - 0x1b52dfff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1b545000 - 0x1b552fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9001bfff com.apple.openscripting 1.2.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90111000 - 0x90139fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9013a000 - 0x90208fff com.apple.JavaScriptCore 5525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90209000 - 0x90214fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90245000 - 0x90247fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90248000 - 0x90250fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90251000 - 0x90336fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90337000 - 0x90339fff com.apple.CrashReporterSupport 10.5.2 (157) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9033a000 - 0x9036cfff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9036d000 - 0x90391fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x90392000 - 0x909e2fff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x909e3000 - 0x909f1fff libz.1.dylib /usr/lib/libz.1.dylib
    0x909f5000 - 0x90a67fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90a68000 - 0x90acefff com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90bb0000 - 0x90be9fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90bea000 - 0x90bfdfff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90bfe000 - 0x90bfefff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90bff000 - 0x90c3efff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90c3f000 - 0x90c7efff com.apple.CoreMediaIOServicesPrivate 12.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90c7f000 - 0x9131bfff com.apple.CoreGraphics 1.351.32 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9131c000 - 0x9133cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9133d000 - 0x91349fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9134a000 - 0x91505fff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91510000 - 0x91510fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91516000 - 0x91516fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91517000 - 0x916e5fff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x916e6000 - 0x91798fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a33000 - 0x91a44fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x91a45000 - 0x91a5bfff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91a5c000 - 0x91a5cfff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91a5d000 - 0x91adcfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91add000 - 0x91aedfff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91aee000 - 0x91b6afff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91b6b000 - 0x91c28fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91c29000 - 0x92426fff com.apple.AppKit 6.5.3 (949.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92427000 - 0x9242efff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9242f000 - 0x92433fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92434000 - 0x9273bfff com.apple.HIToolbox 1.5.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9273c000 - 0x9274bfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9274c000 - 0x9282dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9282e000 - 0x929adfff com.apple.AddressBook.framework 4.1.1 (695) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x929ae000 - 0x929cafff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x929cb000 - 0x929d0fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x929d1000 - 0x92a64fff com.apple.ApplicationServices.ATS 3.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92a65000 - 0x92ab5fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92ab6000 - 0x92afcfff com.apple.Metadata 10.5.2 (398.18) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92afd000 - 0x92bc8fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92bc9000 - 0x92be7fff com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92be8000 - 0x92c41fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92c42000 - 0x92c6ffff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92c70000 - 0x92c70fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92c71000 - 0x92d21fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92d2f000 - 0x92d36fff libbsm.dylib /usr/lib/libbsm.dylib
    0x92d37000 - 0x92d6efff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92d6f000 - 0x9312dfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9312e000 - 0x931dcfff com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93280000 - 0x93307fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93308000 - 0x9330dfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9330e000 - 0x9332dfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9332e000 - 0x9373efff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9373f000 - 0x9378dfff com.apple.datadetectorscore 1.0.2 (52.14) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9378e000 - 0x9378efff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9378f000 - 0x9379afff com.apple.CoreGraphics 1.351.32 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9379b000 - 0x93825fff com.apple.DesktopServices 1.4.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93987000 - 0x93991fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93992000 - 0x93995fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93996000 - 0x93abafff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93abb000 - 0x93b82fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93b83000 - 0x93badfff com.apple.CoreMediaPrivate 11.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93bae000 - 0x93bb4fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93bb5000 - 0x93d15fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x93d16000 - 0x93d16fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93d17000 - 0x93d18fff libffi.dylib /usr/lib/libffi.dylib
    0x93d19000 - 0x93f94fff com.apple.Foundation 6.5.5 (677.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9405f000 - 0x940f2fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x940f3000 - 0x94175fff com.apple.CFNetwork 330.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94176000 - 0x9417ffff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94186000 - 0x941cafff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x941cb000 - 0x941d2fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x941d3000 - 0x941d3fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x941d4000 - 0x941ebfff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x941ec000 - 0x951a1fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x951ae000 - 0x952e6fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x952e7000 - 0x952ebfff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x952ec000 - 0x952ecfff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952ed000 - 0x9531efff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9531f000 - 0x9537bfff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9537c000 - 0x953befff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x953bf000 - 0x95409fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9540a000 - 0x95495fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95496000 - 0x954a6fff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954a7000 - 0x954a7fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x954a8000 - 0x954d0fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x954d1000 - 0x95521fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95522000 - 0x9557cfff com.apple.CoreText 2.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9557d000 - 0x95598fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x955d6000 - 0x955fafff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x955fb000 - 0x9572dfff com.apple.CoreFoundation 6.5.3 (476.14) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9572e000 - 0x957d5fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x957e4000 - 0x9581efff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9581f000 - 0x95965fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95966000 - 0x9599cfff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x9599d000 - 0x959dbfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x959dc000 - 0x95addfff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95ade000 - 0x95adefff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95adf000 - 0x95b99fff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95b9a000 - 0x95ba9fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95baa000 - 0x95c36fff com.apple.LaunchServices 289.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95c37000 - 0x95c86fff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x95c87000 - 0x95ca5fff com.apple.DirectoryService.Framework 3.5.4 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95cdb000 - 0x95ceffff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95cf0000 - 0x95cf4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x95cf5000 - 0x95cfafff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95cfb000 - 0x95e32fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95e33000 - 0x95eadfff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95eae000 - 0x95eb5fff com.apple.CoreGraphics 1.351.32 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95eb6000 - 0x95ed4fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95ed5000 - 0x95fb4fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x95fb5000 - 0x95fcbfff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95fcc000 - 0x95ffbfff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95ffc000 - 0x964cffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x964d0000 - 0x96511fff com.apple.CoreGraphics 1.351.32 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96512000 - 0x96834fff com.apple.QuickTime 7.5.5 (990.7) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96835000 - 0x96b0ffff com.apple.CoreServices.CarbonCore 786.6 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96b7e000 - 0x96ba9fff libauto.dylib /usr/lib/libauto.dylib
    0x96baa000 - 0x96bacfff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96bad000 - 0x96c2afff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96c2b000 - 0x96fc1fff com.apple.QuartzCore 1.5.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96fc2000 - 0x9701ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib

  • My ichat video chat isnt working. the green light will come but there is no invatation

    hi
    i need help!

    Hi,
    In the iChat Preferences (iChat menu > Preferences > Alerts) you can set a Global Auto Accept (or Decline)
    You change the top Down down to be the Invite to be accepted.
    You tick the AppleScripts box and then select the Auto Accept in the drop down  (my pic shows other Scripts I use)
    You can set any Alert for one Buddy only ("Against a Buddy" as I phrased it earlier)
    Highlight a Buddy then do the Get Info keystrokes (CMD + i keys together)
    Select Alerts in the panel that appears.
    I was asking the Original Poster if they had these set as I cannot think why the green Light would come on but not show the Invite without this set.
    The Light does tend to come on as the Invite arrives so it is not the only criteria to look for.
    MacBook Pro 4 days old probably mean iChat 6
    This means that for any AIM Valid Login it will use port 443
    This port is also used by web Browsers for Secure site (Like Logging in here an Apple Discussions) and by some Mail Servers.
    It is below the threshold port of 1024 which means it will be open in your routing device.
    The iChat Connection Process works across several ports.
    The Invite is sent on port 5678 (you can send stuff out through the Mac Firewall and the router without opening ports specifically for this)
    iChat then moves to port 16402 as first choice to send an SIP (Session Initiation Protocol) invite to the IP the Visible part of the invite went to.
    It is the Buddy's "Reply" (the SIP part) to this that needs to get through your router and to your iChat.
    So...  First check the System Preferences > Security > Firewall
    If On then go to the Advanced Button (You may need to unlock the Padlock)
    In this bit you need to have the "Allow Signed Software" to be enabled and for iChat to be in the list.
    DO NOT enable the Stealth option  (It Blocks Pings and iChat sends Pings).
    IMAgent is likely to be added by the System when it is needed (it helps iChat and Face Time)
    The next step is to check ichat is allowed through your router.
    It will be easier if you tells us the Make and Model you are using.
    If you know how to access it in a Web Browser you could make sure it is doing UPnP (Universal Plug and Play)
    8:08 PM      Tuesday; January 3, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Error Message When Trying to Connect to a Video Chat

    Hello,
    I have just purchased a new iMac, and have been trying to use iChat for a video session between me and my friend (who has a Windows XP with SP2 system). She has a webcam installed and plugged in, with the newest version of aim running.
    Every time we try to get a video session running, we keep coming up with error messages, or they only show as One-Way. When they do show it as a One-Way, she can only see herself, and I can only see myself.
    On the iChat system, her buddy name only comes up with a microphone, which makes me assume something is wrong on her side and not mine, but I would like to see if there is something I need to do, also.
    Here is an error message that popped up when we tried to start a session. If you can help me out in solving this issue, I would be very grateful.
    Thank you.
    Error Message:
    Date/Time: 2008-07-18 22:45:35.954 -0700
    OS Version: 10.5.4 (Build 9E17)
    Report Version: 4
    iChat Connection Log:
    2008-07-18 22:45:01 -0700: AVChat started with ID 2602200104.
    2008-07-18 22:45:01 -0700: ikelsey8624: State change from AVChatNoState to AVChatStateWaiting.
    2008-07-18 22:45:01 -0700: 0x7c9890: State change from AVChatNoState to AVChatStateInvited.
    2008-07-18 22:45:22 -0700: 0x7c9890: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-07-18 22:45:22 -0700: ikelsey8624: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-07-18 22:45:32 -0700: 0x7c9890: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-07-18 22:45:32 -0700: 0x7c9890: Error -8 (Did not receive a response from 0x7c9890.)
    2008-07-18 22:45:32 -0700: ikelsey8624: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-07-18 22:45:32 -0700: ikelsey8624: Error -8 (Did not receive a response from 0x7c9890.)
    Video Conference Error Report:
    34.054709 @Video Conference/VideoConferenceMultiController.m:2747 type=4 (FFFFFFFF/60)
    [VCDELEGATE_ACCEPT_CONFERENCE_WASNO]
    Video Conference Support Report:
    20.578254 @SIP/Transport.c:347 type=2 (00000000/0)
    [OPTIONS sip:70.90.160.169:16402 SIP/2.0
    From: sip:rip:5061;tag=1314312361
    To: sip:70.90.160.169:16402
    Call-Id: 121644632114743-ping-rip
    Cseq: 7688 OPTIONS
    User-Agent: COOL/4.9.0.5711 SIPxua/2.9.2.2041 (WinNT)
    Contact: sip:rip:5061
    Via: SIP/2.0/UDP rip:5061;rport
    Content-Length: 0
    20.578464 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:5061
    To: <sip:70.90.160.169:16402>;tag=184533027
    From: <sip:rip:5061>;tag=1314312361
    Call-ID: 121644632114743-ping-rip
    CSeq: 7688 OPTIONS
    Contact: <sip:user@lip:16402>;isfocus
    Allow: INVITE, ACK, OPTIONS, BYE, CANCEL, MESSAGE, REFER, SUBSCRIBE, NOTIFY, INFO
    Allow-Events: conference, refer
    Accept: application/sdp, message/sipfrag, application/conference-info+xml
    User-Agent: Viceroy 1.3
    Content-Length: 0
    32.436066 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:[email protected]:16402 SIP/2.0
    From: <sip:[email protected]:5061>;tag=1c29361
    To: sip:[email protected]:16402
    Call-Id: s20029b3564e633f1
    Cseq: 14099 INVITE
    Contact: <sip:courtsayzstfu@rip:5061>
    Content-Type: application/sdp
    Content-Length: 602
    Max-Forwards: 70
    User-Agent: COOL/4.9.0.5711 SIPxua/2.9.2.2041 (WinNT)
    Supported: replaces
    Via: SIP/2.0/UDP rip:5061;branch=z9hG4bK-dbaebfe91aa3;rport
    [v=0
    o=sipX 5 5 IN IP4 rip
    s=call
    t=0 0
    m=audio 16384 RTP/AVP 96 97 98 99 0 8 100 3 101 4
    c=IN IP4 rip
    a=rtpmap:96 isac/16000/1
    a=rtpmap:97 isaclc/16000/1
    a=rtpmap:98 eg711u/8000/1
    a=rtpmap:99 eg711a/8000/1
    a=rtpmap:0 pcmu/8000/1
    a=rtpmap:8 pcma/8000/1
    a=rtpmap:100 ilbc/8000/1
    a=fmtp:100 mode=30
    a=rtpmap:3 gsm/8000/1
    a=rtpmap:101 telephone-event/8000/1
    a=rtpmap:4 g723/8000/1
    m=video 16386 RTP/AVP 102 34
    c=IN IP4 rip
    a=rtpmap:102 vp71/90000/1
    a=fmtp:102 size:QCIF/SQCIF
    a=rtpmap:34 h263/90000/1
    a=fmtp:34 imagesize 0 rules 15:176:144
    a=framerate:15
    32.436409 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP rip:5061;branch=z9hG4bK-dbaebfe91aa3
    To: <sip:[email protected]:16402>
    From: <sip:[email protected]:5061>;tag=1c29361
    Call-ID: s20029b3564e633f1
    CSeq: 14099 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    32.436505 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP rip:5061;branch=z9hG4bK-dbaebfe91aa3
    To: <sip:[email protected]:16402>;tag=566858670
    From: <sip:[email protected]:5061>;tag=1c29361
    Call-ID: s20029b3564e633f1
    CSeq: 14099 INVITE
    Contact: <sip:[email protected]:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Length: 0
    34.055135 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 603 Decline
    Via: SIP/2.0/UDP rip:5061;branch=z9hG4bK-dbaebfe91aa3
    To: <sip:[email protected]:16402>;tag=566858670
    From: <sip:[email protected]:5061>;tag=1c29361
    Call-ID: s20029b3564e633f1
    CSeq: 14099 INVITE
    Contact: <sip:[email protected]:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Length: 0
    34.083673 @SIP/Transport.c:347 type=2 (00000000/0)
    [ACK sip:[email protected]:16402 SIP/2.0
    Contact: <sip:courtsayzstfu@rip:5061>
    From: <sip:[email protected]:5061>;tag=1c29361
    To: <sip:[email protected]:16402>;tag=566858670
    Call-Id: s20029b3564e633f1
    Cseq: 14099 ACK
    Max-Forwards: 70
    Via: SIP/2.0/UDP rip:5061;branch=z9hG4bK-dbaebfe91aa3;rport
    Content-Length: 0
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.250722 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    20.436525 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 40 bytes (1 entries).
    32.453579 @Video Conference/VideoConferenceMultiController.m:2066 type=5 (FFFFFFFF/0)
    [Caller User Agent: COOL/4.9.0.5711 SIPxua/2.9.2.2041 (WinNT)]
    34.054698 @:0 type=5 (00000000/0)
    [Accept conference from user]
    [courtsayzstfu]
    Binary Images Description for "iChat":
    0x1000 - 0x23bfff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b0000 - 0x31efff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x36a000 - 0x4bdfff com.apple.viceroy.framework 363.2.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x52c000 - 0x56bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x58d000 - 0x5a6fff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c0000 - 0x5fafff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x60a000 - 0x61efff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x62f000 - 0x64dfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x655000 - 0x686fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x6af000 - 0x6b2fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6f2000 - 0x6f7fff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119fb000 - 0x119fefff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x11a05000 - 0x11a0bfff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x11a13000 - 0x11a15fff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x1410c000 - 0x1410cfff liblangid.dylib /usr/lib/liblangid.dylib
    0x147e0000 - 0x148fefff com.apple.RawCamera.bundle 2.0.7 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14966000 - 0x1496bfff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x149ad000 - 0x149b6fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x149c7000 - 0x149cafff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x149d0000 - 0x149d5fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16290000 - 0x162cbfff com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x162d6000 - 0x16303fff com.apple.QuickTimeIIDCDigitizer 7.5 (861) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1630e000 - 0x16358fff com.apple.QuickTimeUSBVDCDigitizer 2.1.7 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x1637f000 - 0x16501fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1652f000 - 0x16784fff com.apple.ATIRadeonX2000GLDriver 1.5.28 (5.2.8) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x167d7000 - 0x167f3fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1798b000 - 0x17b41fff com.apple.audio.codecs.Components 1.6.3 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x18404000 - 0x18405fff com.apple.JavaPluginCocoa 12.1.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x18447000 - 0x1844cfff com.apple.JavaVM 12.1.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x18455000 - 0x18456fff com.apple.iChat.PersonIconPlugIn 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x19302000 - 0x19305fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x19862000 - 0x1987efff com.apple.QuartzComposer.ExtraPatches 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x19890000 - 0x198adfff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x198c5000 - 0x198d2fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x900e8fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x900e9000 - 0x900e9fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x900ea000 - 0x9012bfff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90131000 - 0x90149fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9014a000 - 0x901bcfff com.apple.iLifeMediaBrowser 1.0.7 (208) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x901bd000 - 0x901f3fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x901f4000 - 0x902aefff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x902af000 - 0x902c6fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x902c7000 - 0x902ebfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x902ec000 - 0x902f1fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x902f8000 - 0x90347fff com.apple.QuickLookUIFramework 1.1 (170.4) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90348000 - 0x90375fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90376000 - 0x903d2fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x903d3000 - 0x903dcfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x903dd000 - 0x903defff libffi.dylib /usr/lib/libffi.dylib
    0x903df000 - 0x903dffff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x903e0000 - 0x903fdfff com.apple.QuickLookFramework 1.1 (170.4) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x903fe000 - 0x9044efff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x904bd000 - 0x904d8fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x904d9000 - 0x90580fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90581000 - 0x90587fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90588000 - 0x90602fff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90603000 - 0x90653fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90654000 - 0x906a2fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x906a3000 - 0x906a3fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x906a4000 - 0x917e9fff com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x917ea000 - 0x917f5fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x917f6000 - 0x9183afff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9183b000 - 0x9184afff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9184b000 - 0x918d5fff com.apple.DesktopServices 1.4.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x918d6000 - 0x91f72fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91f73000 - 0x91f89fff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91f8a000 - 0x91f8efff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x91f8f000 - 0x92070fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x920a6000 - 0x921cafff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x921cb000 - 0x921d6fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x921d7000 - 0x921dcfff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x921e7000 - 0x9221efff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9221f000 - 0x92223fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x922c7000 - 0x922d3fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x922d4000 - 0x922d4fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x922d5000 - 0x92314fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92315000 - 0x9234efff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9234f000 - 0x923a8fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x923a9000 - 0x92406fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x92407000 - 0x924d2fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x924d3000 - 0x92515fff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92516000 - 0x92534fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x92535000 - 0x92535fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92536000 - 0x9253dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9253e000 - 0x92551fff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92552000 - 0x92552fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92553000 - 0x92567fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92568000 - 0x92d65fff com.apple.AppKit 6.5.3 (949.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92d66000 - 0x92d8efff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92d8f000 - 0x92df5fff com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92df6000 - 0x92df8fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92df9000 - 0x92e19fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e1a000 - 0x92eadfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92eae000 - 0x92eccfff com.apple.DirectoryService.Framework 3.5.4 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92ecd000 - 0x92ecdfff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92ece000 - 0x92f18fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92f19000 - 0x92f98fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92f99000 - 0x92f99fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92f9a000 - 0x930d1fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9319c000 - 0x9319efff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9319f000 - 0x935affff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x935bd000 - 0x935bffff com.apple.CrashReporterSupport 10.5.2 (157) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x935c0000 - 0x935dcfff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x935dd000 - 0x93664fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93665000 - 0x939fbfff com.apple.QuartzCore 1.5.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x939fc000 - 0x93ecffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93ed0000 - 0x93f9efff com.apple.JavaScriptCore 5525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93f9f000 - 0x93fc7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93fc8000 - 0x94076fff com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94077000 - 0x941d7fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x94209000 - 0x94294fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94295000 - 0x9429afff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9437c000 - 0x9442efff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x9442f000 - 0x9444efff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9444f000 - 0x94595fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94596000 - 0x94596fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94597000 - 0x94955fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94956000 - 0x9495afff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9495b000 - 0x94985fff com.apple.CoreMediaPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94986000 - 0x9499cfff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9499d000 - 0x94a5afff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94b2f000 - 0x94bacfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94bad000 - 0x94bbcfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94bbd000 - 0x94bc7fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94bc8000 - 0x94c22fff com.apple.CoreText 2.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c23000 - 0x94c95fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94c96000 - 0x94cc5fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94cc6000 - 0x94d0cfff com.apple.Metadata 10.5.2 (398.18) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94d0d000 - 0x94decfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x94f12000 - 0x95044fff com.apple.CoreFoundation 6.5.3 (476.14) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95045000 - 0x9534cfff com.apple.HIToolbox 1.5.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9535b000 - 0x95493fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95494000 - 0x9555bfff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x957c5000 - 0x95944fff com.apple.AddressBook.framework 4.1.1 (695) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95945000 - 0x9594dfff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9594e000 - 0x95a4ffff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95a50000 - 0x95a57fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95a58000 - 0x95c26fff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95c64000 - 0x95ce6fff com.apple.CFNetwork 330.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95ce7000 - 0x95fc1fff com.apple.CoreServices.CarbonCore 786.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95fc2000 - 0x95fd0fff libz.1.dylib /usr/lib/libz.1.dylib
    0x95fd1000 - 0x95ff5fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95ff6000 - 0x96072fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96073000 - 0x96076fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96077000 - 0x96232fff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9623f000 - 0x9627dfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9627e000 - 0x962b8fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x962b9000 - 0x965dafff com.apple.QuickTime 7.5.0 (861) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x965db000 - 0x965dbfff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x965dc000 - 0x9661afff com.apple.CoreMediaIOServicesPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9661b000 - 0x9664dfff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9664e000 - 0x9665efff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9665f000 - 0x9670ffff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96710000 - 0x9673bfff libauto.dylib /usr/lib/libauto.dylib
    0x9689d000 - 0x968a4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x968a5000 - 0x96ef5fff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96ef6000 - 0x96f82fff com.apple.LaunchServices 289.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96f83000 - 0x971fefff com.apple.Foundation 6.5.5 (677.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x971ff000 - 0x971fffff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97200000 - 0x97211fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x97212000 - 0x97243fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x97244000 - 0x97254fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97255000 - 0x9725cfff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9725d000 - 0x972f0fff com.apple.ApplicationServices.ATS 3.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    Ok,
    Several things.
    AIM Says this about AIM 6.5
    http://www.aim.com/helpfaq/starting_out/getstarted.adp#608
    They have not said anything on AIM 6.8 yet.
    AIM 6.1 worked but is no longer downloadable.
    AIM 5.9 does work but needs more setting up.
    All versions need to do this on the PC
    http://www.ralphjohns.co.uk/page12.html#_Service and allow the app through the Firewall on which ever Windows version they have.
    In AIM 6.1 and above the PC user needs to find the AIM Preferences and select their Camera in Enhanced IM.
    Their Mic should be set in the Audio Devices Control Panel
    IF AIM 5.9 then they need this site at message 570 onwards as the Camera and Mic need to be "Tuned" to the device.
    As there is no record of your end accepting a Ping you may need to set your Routing device to Allow Internet Pings
    8:08 PM Saturday; July 19, 2008

  • Why can't I get the Audi-video chat started?

    My step-daughter and I have iSight cameras and Macintosh Computers with iChat installed. On Friday afternoon we tried to start a video-chat. I heard by phone, that we were both trying to get in touch with each other at the same time.
    • I was able to get my step-daughter entered as one of my ‘Buddies’. There is a Buddy List and her name is there, correctly. Though I have to add her name, from my address book, each time I close iChat down.
    • The rectangular menu has the following icons at the bottom A, a telephone icon & a video-camera ‘greyed out’. I do not see why I cannot blacken them.
    • When my step-daughter succeeded in getting her camera turned on (see could see herself on her computer screen) I double-clicked on the video-camera part of her name card in the buddy list.
    • Miraculously, but ultimately disappointingly, the process of trying to contact my step-daughter began. Another view of my camera picture appeared, the rotating ‘stop-clock’ type icon began spinning for about ten seconds. The message setting up video-chat changed to tell me that the attempt to establish a video-chat had failed because I had failed to respond.
    • But I had no indication of how to respond. Minutes later I was able to establish a chat with my step-daughter with text. If I can establish textual contact, why not audiovisual?
    • I take it the use of Bonjour is the way to go rather than aim.
    iMac G4   Mac OS X (10.4.5)  

    I'm not sure how to add to my own topic, or I'm supposed to... but here goes.
    One thought as to why text messages will work and Audio Video won't has to do with broadband speed. I checked my Internet Service Provider website (Cable & Wireless in the Cayman Islands) and they have a way of 'Testing Your Broadband Speed'.
    I tried that and although I could not print the results, the test told me that my download speed is 1.3 mb and my upload speed is 553 kb. I haven't a clue if that is fast, slow or something in between. however, page 3 of the iChat brochure (videoconferencing for the rest of us) http://www.apple.com/macosx/features/ichat/ said that to initiate or participate in a 1 to 1 video conference the bandwidth required is 100 kbps. I've got that, right?
    Another thoughtthat I had was that my step-daughter may not have 'Full .Mac membership', she may just be 'on trial'. I'll ask her and if that's the case it's problem solved, see page one of http://www.mac.com/1/ichat.html.
    Router doubts have been dispelled. I have a Netopia not a Belkin. A troubleshooting piece from 2003 refering to a Beta version of all this said that a Belkin router would not do the business.
    So, anymore thoughts out there, Mac people?

  • IChat video chat not working

    I am using iChat v 4.0.9 . I am using OS X 10.5.8
    I have used video chat with no problems until today. I can only audio chat. I get a message saying "this Computer does not support video conferencing." I can use my iSight find in photo booth. I do not have internet sharing enabled. The bandwidth limit is greyed out under my iChat preferences along with Automatically open iChat when external camera is turned on. I saw on one forum to delete an ichat file in the USB folder (?) -- I am at a loss. Any assistance would be appreciated. ~ K

    sleepholow wrote:
    I am using iChat v 4.0.9 . I am using OS X 10.5.8
    I have used video chat with no problems until today. I can only audio chat. I get a message saying "this Computer does not support video conferencing." I can use my iSight find in photo booth. I do not have internet sharing enabled. The bandwidth limit is greyed out under my iChat preferences along with Automatically open iChat when external camera is turned on. I saw on one forum to delete an ichat file in the USB folder (?) -- I am at a loss. Any assistance would be appreciated. ~ K
    Welcome to Discussions, sleepholow
    Have you tried shutting everything down and restarting your modem, router (if you use one), and Mac in that order? Let each self-test complete before restarting the next device. A modem/router restart usually restores iChat video for me without need for other action.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • IChat Video Chats Not Working

    Hi, I always video chated on my iChat until about a month ago. My friend tried to video chat me and everytime she tried it would say there was a communication error and that she failed to respond. Then I tried sending the invite to her and the same thing happened to her and its been happening ever since then when anyone tries to video chat me or I try to video chat them. I currently have macbook OS X 10.5.8 running iChat version 4.0.9. Please respond ASAP and let me know how to fix this!!! P.S. Also if i try to screen share the same thing happens and i know its not a problem with my internet becuase i switched onto a different internet it kept happening.
    - Roslyn

    Hi,
    So how are the ports iChat uses open in your Router or Modem ?
    9:41 PM      Wednesday; October 26, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • IChat video chatting not working

    I have read through many posts and cannot find an answer to my problem.
    When I initiate or receive and invite for a video chat with another Mac I receive a message indicating that "There was a communication error during your chat". It goes on to state that I did not receive a response from the individual with whom I was trying to conference, when in fact he did respond. The details to the error message are as follows:
    Date/Time: 2007-12-01 19:34:15.358 -0500
    OS Version: 10.5.1 (Build 9B18)
    Report Version: 4
    iChat Connection Log:
    2007-12-01 19:23:18 -0500: AVChat started with ID 2388488579.
    2007-12-01 19:23:18 -0500: 0x1064d900: State change from AVChatNoState to AVChatStateWaiting.
    2007-12-01 19:23:18 -0500: boyconundrum6: State change from AVChatNoState to AVChatStateInvited.
    2007-12-01 19:23:27 -0500: 0x1064d900: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-12-01 19:23:27 -0500: boyconundrum6: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-12-01 19:23:36 -0500: 0x1064d900: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-01 19:23:36 -0500: 0x1064d900: Error -8 (Did not receive a response from 0x1064d900.)
    2007-12-01 19:23:36 -0500: boyconundrum6: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-01 19:23:36 -0500: boyconundrum6: Error -8 (Did not receive a response from 0x1064d900.)
    Video Conference Error Report:
    4219.015897 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    4221.017789 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    4217.015527 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK17f819c22e81f7e6
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1015643002
    Call-ID: d040ae00-a06c-11dc-8f91-b88671bc4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    4217.516123 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK17f819c22e81f7e6
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1015643002
    Call-ID: d040ae00-a06c-11dc-8f91-b88671bc4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    4218.516550 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK17f819c22e81f7e6
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1015643002
    Call-ID: d040ae00-a06c-11dc-8f91-b88671bc4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    4219.016636 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK40f3486b12ac8a1b
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=348871711
    Call-ID: d171febe-a06c-11dc-8f91-ff4e68084012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    4219.517132 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK40f3486b12ac8a1b
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=348871711
    Call-ID: d171febe-a06c-11dc-8f91-ff4e68084012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    4220.517519 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK40f3486b12ac8a1b
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=348871711
    Call-ID: d171febe-a06c-11dc-8f91-ff4e68084012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    v=0
    o=RyanBland 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2229558627
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3307238676
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    4202.573304 @:0 type=5 (00000000/16402)
    [Local SIP port]
    4212.517431 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 160 bytes (4 entries).
    4216.980649 @Video Conference/VideoConferenceMultiController.m:1509 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 160 bytes of connection data.
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6ad000 - 0x6adfff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x99e3000 - 0x99e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x99ed000 - 0x99f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x99fb000 - 0x99fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xb9f7000 - 0xb9fefff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xba08000 - 0xba09fff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0xbaf3000 - 0xbaf3fff liblangid.dylib /usr/lib/liblangid.dylib
    0xc0c6000 - 0xc1acfff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xd30c000 - 0xd311fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xdd5b000 - 0xdd64fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xdd6e000 - 0xdd71fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xdd77000 - 0xdd7cfff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xddea000 - 0xde25fff com.apple.QuickTimeFireWireDV.component 7.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xde30000 - 0xde5dfff com.apple.QuickTimeIIDCDigitizer 7.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xde68000 - 0xdeb2fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xded9000 - 0xe05afff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xe088000 - 0xe2eefff com.apple.ATIRadeonX1000GLDriver 1.5.18 (5.1.8) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xe331000 - 0xe34dfff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf513000 - 0xf6a0fff com.apple.audio.codecs.Components 1.6 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x104c3000 - 0x104c6fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x10740000 - 0x1075cfff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x107c4000 - 0x107e1fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x107f9000 - 0x10806fff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90104fff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90105000 - 0x9017cfff com.apple.CFNetwork 220 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9017d000 - 0x9017ffff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90180000 - 0x9019efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x901ac000 - 0x90425fff com.apple.Foundation 6.5.1 (677.1) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90426000 - 0x90458fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90459000 - 0x905d7fff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x905d8000 - 0x90aedfff com.apple.WebCore 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90b8d000 - 0x90cc3fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90cc4000 - 0x90f9dfff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f9e000 - 0x90fa8fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90fa9000 - 0x90fe2fff com.apple.securityfoundation 3.0 (32768) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90fe3000 - 0x91019fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9101a000 - 0x91066fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91067000 - 0x9106efff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9106f000 - 0x910b3fff com.apple.DirectoryService.PasswordServerFramework 3.0.1 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x910b4000 - 0x910d2fff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x910d3000 - 0x910e0fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x910e7000 - 0x91137fff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91138000 - 0x911bffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x911c0000 - 0x91389fff com.apple.security 5.0.1 (32736) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9147f000 - 0x922fffff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92457000 - 0x92481fff libauto.dylib /usr/lib/libauto.dylib
    0x92482000 - 0x924b3fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x924b4000 - 0x924ccfff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x924cd000 - 0x92583fff com.apple.CoreServices.OSServices 210.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92584000 - 0x9259afff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9259e000 - 0x9259efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9259f000 - 0x9261efff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9261f000 - 0x9268efff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9268f000 - 0x92693fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9269e000 - 0x926f7fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x926f8000 - 0x927bffff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x927c0000 - 0x92867fff com.apple.QD 3.11.50 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92868000 - 0x92918fff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92919000 - 0x92caffff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92cb0000 - 0x92d3cfff com.apple.LaunchServices 284 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92d3d000 - 0x92d46fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92d47000 - 0x92e26fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92e27000 - 0x92e35fff libz.1.dylib /usr/lib/libz.1.dylib
    0x92e36000 - 0x92e5afff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x92e5b000 - 0x92e82fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x92e83000 - 0x93293fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93294000 - 0x932b2fff com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x932b3000 - 0x932b7fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93398000 - 0x933a7fff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x933a8000 - 0x933defff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x933df000 - 0x93472fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93473000 - 0x935cdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x935ce000 - 0x935defff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x935e4000 - 0x935e9fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x935ea000 - 0x935f2fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x935f3000 - 0x93717fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93718000 - 0x9371efff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9371f000 - 0x9373afff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9373b000 - 0x937f6fff com.apple.WebKit 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x937f7000 - 0x93afdfff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93afe000 - 0x93afefff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93aff000 - 0x93bcafff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93bcb000 - 0x943c5fff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x943d2000 - 0x943d3fff libffi.dylib /usr/lib/libffi.dylib
    0x943d4000 - 0x943d4fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x943d5000 - 0x943d5fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x943d6000 - 0x94417fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94418000 - 0x9441dfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9445c000 - 0x94467fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94468000 - 0x944c4fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x944c5000 - 0x94541fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94542000 - 0x94542fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94543000 - 0x945f5fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x9485f000 - 0x948cdfff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x948ce000 - 0x9490bfff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9490c000 - 0x94951fff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94952000 - 0x94976fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x94977000 - 0x94c89fff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c8a000 - 0x94c95fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94c96000 - 0x94dcefff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x94dcf000 - 0x94ddffff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94de0000 - 0x94de0fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94de1000 - 0x94de8fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94de9000 - 0x94debfff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94dec000 - 0x952b8fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x952b9000 - 0x952d5fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x952d6000 - 0x952d6fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x952d7000 - 0x952d8fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9530a000 - 0x95316fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95317000 - 0x9532bfff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9532c000 - 0x9536efff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9536f000 - 0x95450fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x95451000 - 0x95458fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x95459000 - 0x95486fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95487000 - 0x954d1fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x954d2000 - 0x95617fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95618000 - 0x957d3fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x957d4000 - 0x95831fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95832000 - 0x95832fff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95833000 - 0x95852fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x958c0000 - 0x95c7efff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95c7f000 - 0x95cf9fff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95cfa000 - 0x96391fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96392000 - 0x963d1fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x963d2000 - 0x963fafff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x963fb000 - 0x963fbfff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x963fc000 - 0x964e0fff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x964e1000 - 0x96510fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96511000 - 0x9659cfff com.apple.QTKit 7.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9659d000 - 0x965b0fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x965b1000 - 0x96643fff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96644000 - 0x96644fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96645000 - 0x966b9fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x966ba000 - 0x967ecfff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x967ed000 - 0x9689cfff com.apple.DesktopServices 1.4.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96963000 - 0x96979fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9697a000 - 0x96989fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9698a000 - 0x9698dfff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9698e000 - 0x969b1fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x969b2000 - 0x969b2fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x969b3000 - 0x969bafff libbsm.dylib /usr/lib/libbsm.dylib
    0x969bb000 - 0x969f5fff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x969f6000 - 0x969f8fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96a07000 - 0x96a57fff com.apple.framework.familycontrols 1.0.1 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96a58000 - 0x96a94fff com.apple.CoreMediaIOServicesPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96a95000 - 0x96aa6fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96aa7000 - 0x96b01fff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96b02000 - 0x96b8cfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96b8d000 - 0x96bdafff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96bdb000 - 0x96c84fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96c85000 - 0x96c8afff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96c8b000 - 0x96ca2fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x96cd8000 - 0x96d3dfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    If anyone can help me I would appreciate it. It is not like I went Mac for the iChat but boy I sure would like to use it.
    Thanks

    Sorry just to be helpful, and not to offer a solution... But: me, too: If my brother or others try and 'phone' me to invite me to a video conference, I quickly 'accept,' but the message "There was a communication error" pops up, which I've repeatedly sent on to Mac. They must have gotten a slew of these...not that it's done me any good. It also says that I didn't accept, and if I initiate the call, they didn't accept--though of course they did.
    Since I bought into the Mac world about a year ago, this hasn't worked. I haven't pursued it because after all it's just a time-waster, but I'd like to solved it. Particularly with Christmas coming. I'm 2500 or something kms away. My brother in Vancouver can Chat with my sister--there as well--so it's my end that is the problem. Interestingly, he visited here last week, sat on my couch while I was 10 feet away here and it worked.
    I did contact Mac Help via phone, but their gal didn't know what to suggest except that it was my service provider, yet the service provider didn't think it was them. I don't have a firewall that I know of, but in case I followed Mac Help's online advice to create an 'iChat firewall' checkbox. Since I don't think there is a firewall, I suspect I'm only creating problems. An e-mail to Mac got no reply, either.
    But maybe for you, it would help. If you go to the iChat help page (type in ichat in the search window), somewhere in there is a suggestion to fix the firewall by clearing certain ports and ranges of ports to let iChat go through them. Apple > System prefs > Sharing > Firewall, and here you create an iChat profile. But this has never worked for me. As i say, don't think I have a firewall. I wonder if I tried an AIM name whether it would work...but a Mac name is supposed to, as well. I also wonder if the problem is that I don't use Bonjour or Jabber? But again, the .mac name is supposed to be fine.
    Well, let's hope.
    --Yukon Moe

  • IChat video chat help please!

    I am trying to video chat w/ my aunt..she has a macbook (idk which one it's the white one that costs around $1000 i think) and I have the newest imac 24"
    anyway even when she requests to video chat w/ me it tells me she isn't responding..here is the error code...help is greatly appreciated
    Date/Time: 2008-03-26 13:18:14.744 -0400
    OS Version: 10.5.2 (Build 9C7010)
    Report Version: 4
    iChat Connection Log:
    2008-03-26 13:17:42 -0400: AVChat started with ID 4214795765.
    2008-03-26 13:17:42 -0400: 0x17e96e40: State change from AVChatNoState to AVChatStateWaiting.
    2008-03-26 13:17:42 -0400: [email protected]: State change from AVChatNoState to AVChatStateInvited.
    2008-03-26 13:17:55 -0400: 0x17e96e40: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-03-26 13:17:55 -0400: [email protected]: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-03-26 13:18:05 -0400: 0x17e96e40: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-26 13:18:05 -0400: 0x17e96e40: Error -8 (Did not receive a response from 0x17e96e40.)
    2008-03-26 13:18:05 -0400: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-03-26 13:18:05 -0400: [email protected]: Error -8 (Did not receive a response from 0x17e96e40.)
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    12.537471 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 160 bytes (4 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x76a000 - 0x76afff liblangid.dylib /usr/lib/liblangid.dylib
    0x7d7000 - 0x7dcfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e3000 - 0x7e6fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ed000 - 0x7f3fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x902fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x9ba000 - 0x9bafff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x9c0000 - 0x9c1fff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x9fc000 - 0xa03fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x13569000 - 0x1356efff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x13635000 - 0x13651fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x13a41000 - 0x13b4bfff com.apple.RawCamera.bundle 2.0.4 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x13b9f000 - 0x13ba8fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x13bb2000 - 0x13bb5fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x13bbb000 - 0x13bc0fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14df6000 - 0x14e31fff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14e3c000 - 0x14e69fff com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14e74000 - 0x14ebefff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14ee5000 - 0x15067fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15095000 - 0x152e4fff com.apple.ATIRadeonX2000GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x15337000 - 0x15353fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x164dd000 - 0x1666bfff com.apple.audio.codecs.Components 1.6.1 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x17d3d000 - 0x17d40fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x18294000 - 0x182a1fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x18337000 - 0x18354fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9002efff libauto.dylib /usr/lib/libauto.dylib
    0x9002f000 - 0x9002ffff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90030000 - 0x9003ffff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x90040000 - 0x901fbfff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x901fc000 - 0x90200fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90201000 - 0x9020afff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9020b000 - 0x90292fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x90293000 - 0x902a9fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x902aa000 - 0x908fafff com.apple.WebCore 5525.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90908000 - 0x90927fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90928000 - 0x9092ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90930000 - 0x9112dfff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9112e000 - 0x911d5fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x911d6000 - 0x911f3fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x911f4000 - 0x912bffff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x912ce000 - 0x912d3fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x912d4000 - 0x912e7fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x912e8000 - 0x912f9fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x912fa000 - 0x912fefff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x912ff000 - 0x91331fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91332000 - 0x91400fff com.apple.JavaScriptCore 5525.13 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9143f000 - 0x91441fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91442000 - 0x91442fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91443000 - 0x91493fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91494000 - 0x9182afff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9182b000 - 0x9192cfff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9192d000 - 0x91a64fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91a65000 - 0x91a92fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91a93000 - 0x91aedfff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91aee000 - 0x91aeefff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91aef000 - 0x92a76fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92a77000 - 0x92a8bfff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92a8c000 - 0x92adafff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92adb000 - 0x92afffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x92b00000 - 0x92b04fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x92b05000 - 0x92b3cfff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92b3d000 - 0x92cbbfff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92cbc000 - 0x92d19fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x92d1a000 - 0x92f94fff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9305d000 - 0x93371fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93372000 - 0x93372fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x933a4000 - 0x933d5fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9352f000 - 0x9352ffff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93530000 - 0x935bcfff com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x935bd000 - 0x938c5fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x938c6000 - 0x938c6fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x938c7000 - 0x938dffff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x938e0000 - 0x938e0fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x938e1000 - 0x938fffff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9390c000 - 0x93971fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93972000 - 0x939affff com.apple.CoreMediaIOServicesPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x939e5000 - 0x93a03fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93a04000 - 0x93a81fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93a82000 - 0x93a87fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93a88000 - 0x93aa3fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93aa4000 - 0x93accfff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93acd000 - 0x93acffff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93ad0000 - 0x93adafff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93ae1000 - 0x93c26fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93c27000 - 0x93c27fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93c28000 - 0x93c9ffff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93ca0000 - 0x94173fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94174000 - 0x941b8fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9448f000 - 0x9449afff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9449b000 - 0x944ddfff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x944de000 - 0x94598fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94599000 - 0x945e9fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x945ea000 - 0x94634fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9463f000 - 0x946d2fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x946d3000 - 0x946dffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x946e0000 - 0x946effff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x946f0000 - 0x9472efff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9475f000 - 0x9476dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9476e000 - 0x94775fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94776000 - 0x94776fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94777000 - 0x947f1fff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x947f2000 - 0x9482bfff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9482c000 - 0x94888fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9495d000 - 0x949d9fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x949da000 - 0x94a6dfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94a6e000 - 0x94bcdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x94bce000 - 0x94bd0fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94bd1000 - 0x9526afff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9526b000 - 0x9529afff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9529b000 - 0x952a3fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x952a4000 - 0x95354fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95355000 - 0x95365fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95366000 - 0x95498fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95499000 - 0x954b0fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x954b1000 - 0x9553cfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9553d000 - 0x9558cfff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9558d000 - 0x955a9fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x955aa000 - 0x955effff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x956e5000 - 0x95726fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95727000 - 0x9573dfff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9573e000 - 0x9573efff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9573f000 - 0x9577efff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9577f000 - 0x95860fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x95861000 - 0x95897fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x95898000 - 0x9589efff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9589f000 - 0x958c3fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x958c8000 - 0x95a00fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x95a01000 - 0x95a0cfff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95aed000 - 0x95b76fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95b77000 - 0x95b9ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x95ba0000 - 0x95e79fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95f19000 - 0x95f1cfff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95f1d000 - 0x962dbfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x962dc000 - 0x962e3fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x962e4000 - 0x962e9fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x962ea000 - 0x962f1fff libbsm.dylib /usr/lib/libbsm.dylib
    0x962f2000 - 0x96416fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96417000 - 0x964defff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x964df000 - 0x9656bfff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9656c000 - 0x965ebfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x965ec000 - 0x9665efff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9665f000 - 0x96711fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96712000 - 0x96722fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96723000 - 0x967e0fff com.apple.WebKit 5525.13 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x967e1000 - 0x9681bfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9681c000 - 0x96846fff com.apple.CoreMediaPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x96847000 - 0x9692cfff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9692d000 - 0x96d3dfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96d3e000 - 0x96e1dfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x96e1e000 - 0x96e77fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96e78000 - 0x97043fff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97044000 - 0x97064fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97065000 - 0x97065fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97066000 - 0x97067fff libffi.dylib /usr/lib/libffi.dylib

    Hi,
    Welcome to the  Discussion Pages
    This was the useful info from that
    2008-03-26 13:18:05 -0400: [email protected]: Error -8 (Did not receive a response from 0x17e96e40.)
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    Local SIP port
    12.537471 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 160 bytes (4 entries).
    AS there is no feedback as to Ports or any length to this part of the log it means the ports are not open in your Modem or router.
    Possibly both.
    You are going to have to tell what devices you are using and how you have set them up for iChat.
    10:05 PM Thursday; March 27, 2008

Maybe you are looking for

  • Windows NT authentication on Infoview Edge 3.0

    Hallo , I want to know if it's possible to configure WINDOWS NT Anthentication on business objects Egdbe Serie 3.0 If yes.. How .... thanks

  • Macbook Pro + HP LP2475w display

    Hello everybody! I have a brand new Macbook pro connected to an external display, an HP LP2475w, and the image is not sharp. It seems a little blurry. Does anyone knows how to solve this? Is this caused by the mini dvi adapter? Thanks for any help! C

  • Has anyone picked up a virus today

    I am having a few funny things happen to my mac book air like "linkbuck" ads dominating my screen and key board none responce type issues not to mention that I can not always log on to the internet or should I say that I get into a page (like the BBC

  • How to update OS X 10.5.8 TO MOUNTAIN LION.

    my iMac has os x 10.5.8 and i cannot figure out how to update it to where i will have the app store application so i could from there update it to mountain lion. any help? thanks

  • Duration in SM37

    Hi, where can i find the job execution time (duration) shown in SM37? I cant find it neither in TBTCP nor in TBTCO. Is it really calculated from start and end time?